c# get random index from list

70

c# get random index from list -

// set a list in C#.
var myList = new List<int>{ 1, 2, 3, 4 };
// get the count of the elements and display randomly.
int index = random.Next(myList.Count);
Console.WriteLine(myList[index]);

Comments

Submit
0 Comments